home *** CD-ROM | disk | FTP | other *** search
/ CD ROM Paradise Collection 4 / CD ROM Paradise Collection 4 1995 Nov.iso / win / esftt20.zip / REGISTER.BAT < prev    next >
DOS Batch File  |  1995-01-18  |  2KB  |  30 lines

  1. echo off
  2. cls
  3. echo ┌────────────────────────────────────────────────────────────────────────┐
  4. echo │ We are now ready to print a copy of the registration form for the ESF's│
  5. echo │ TrueType Collection 1. Registered users receive a free font newsletter,│
  6. echo │ additional bonus fonts, free CompuServe account with $15 access credit,│
  7. echo │ access to technical support, and can purchase our giant 202 outline    │
  8. echo │ TrueType collection at the special price of $59.50!                    │
  9. echo │                                                                        │
  10. echo │ Make sure your printer is on and ready to run. This batch file assumes │
  11. echo │ your printer is attached to LPT1:. If you use a different printer port │
  12. echo │ hit Ctrl-C now to stop this batch file. Then restart the batch file,   │
  13. echo │ passing it the printer port you do use:                                │
  14. echo │                                                                        │
  15. echo │ REGISTER LPT2    or    REGISTER COM1                                   │
  16. echo │                                                                        │
  17. echo │ If you *don't* want to print this, press the Ctrl-C key now to abort   │
  18. echo │ this batch file and return to INSTALL.                                 │
  19. echo └────────────────────────────────────────────────────────────────────────┘
  20. pause
  21. echo Printing a copy of ESF's TrueType Collection 1 Registration form....
  22. if "%1"=="" goto DOLPT1
  23. copy register.doc %1:
  24. goto done
  25. :DOLPT1
  26. copy register.doc LPT1:
  27. :done
  28.  
  29.  
  30.